home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / php / pear / Var_Dump / Renderer / XML.php < prev   
PHP Script  |  2004-10-01  |  5KB  |  143 lines

  1. <?php
  2. /* vim: set expandtab tabstop=4 shiftwidth=4: */
  3. // +----------------------------------------------------------------------+
  4. // | PHP version 4                                                        |
  5. // +----------------------------------------------------------------------+
  6. // | Copyright (c) 1997-2004 The PHP Group                                |
  7. // +----------------------------------------------------------------------+
  8. // | This source file is subject to version 3.0 of the PHP license,       |
  9. // | that is bundled with this package in the file LICENSE, and is        |
  10. // | available through the world-wide-web at the following url:           |
  11. // | http://www.php.net/license/3_0.txt.                                  |
  12. // | If you did not receive a copy of the PHP license and are unable to   |
  13. // | obtain it through the world-wide-web, please send a note to          |
  14. // | license@php.net so we can mail you a copy immediately.               |
  15. // +----------------------------------------------------------------------+
  16. // | Authors: Frederic Poeydomenge <frederic.poeydomenge@free.fr>         |
  17. // +----------------------------------------------------------------------+
  18. //
  19. // $Id:
  20.  
  21. require_once 'Var_Dump/Renderer/Common.php';
  22.  
  23. /**
  24.  * A concrete renderer for Var_Dump
  25.  *
  26.  * Returns a representation of a variable in XML
  27.  * DTD : $PEARDIR/data/Var_Dump/renderer-xml.dtd
  28.  *
  29.  * @package Var_Dump
  30.  * @category PHP
  31.  * @author Frederic Poeydomenge <frederic.poeydomenge@free.fr>
  32.  */
  33.  
  34. class Var_Dump_Renderer_XML extends Var_Dump_Renderer_Common
  35. {
  36.  
  37.     /**
  38.      * Class constructor.
  39.      * @param array $options Parameters for the rendering.
  40.      * @access public
  41.      */
  42.     function Var_Dump_Renderer_XML($options = array())
  43.     {
  44.         $this->setOptions($options);
  45.     }
  46.  
  47.     /**
  48.      * Returns the string representation of a variable
  49.      * @return string The string representation of the variable.
  50.      * @access public
  51.      */
  52.     function toString()
  53.     {
  54.         if (count($this->family) == 1) {
  55.             return $this->_toString_Single();
  56.         } else {
  57.             return $this->_toString_Array();
  58.         }
  59.     }
  60.  
  61.     /**
  62.      * Returns the string representation of a single variable
  63.      * @return string The string representation of a single variable.
  64.      * @access private
  65.      */
  66.     function _toString_Single()
  67.     {
  68.         return
  69.             '<element>' .
  70.             '<type>' . htmlspecialchars($this->type[0]) . '</type>' .
  71.             '<value>' . htmlspecialchars($this->value[0]) . '</value>' .
  72.             '</element>';
  73.     }
  74.  
  75.     /**
  76.      * Returns the string representation of a multiple variable
  77.      * @return string The string representation of a multiple variable.
  78.      * @access private
  79.      */
  80.     function _toString_Array()
  81.     {
  82.         $txt = '';
  83.         $counter = count($this->family);
  84.         $depth = 0;
  85.         for ($c = 0 ; $c < $counter ; $c++) {
  86.             switch ($this->family[$c]) {
  87.                 case VAR_DUMP_START_GROUP :
  88.                     if ($this->depth[$c] > 0) {
  89.                         $txt .=
  90.                             $this->_spacer($depth) . '<type>group</type>' . "\n" .
  91.                             $this->_spacer($depth++) . '<value>' . "\n";
  92.                     }
  93.                     $txt .=
  94.                         $this->_spacer($depth) .
  95.                         '<group caption="' . htmlspecialchars($this->value[$c]) .
  96.                         '">' . "\n";
  97.                     break;
  98.                 case VAR_DUMP_FINISH_GROUP :
  99.                     $txt .= $this->_spacer($depth) . '</group>' . "\n";
  100.                     if ($this->depth[$c] > 0) {
  101.                         $txt .=
  102.                             $this->_spacer(--$depth) . '</value>' . "\n" .
  103.                             $this->_spacer(--$depth) . '</element>' . "\n";
  104.                         $depth--;
  105.                     }
  106.                     break;
  107.                 case VAR_DUMP_START_ELEMENT_NUM :
  108.                 case VAR_DUMP_START_ELEMENT_STR :
  109.                     $txt .=
  110.                         $this->_spacer(++$depth) . '<element>' . "\n" .
  111.                         $this->_spacer(++$depth) . '<key>' .
  112.                         htmlspecialchars($this->value[$c]) .
  113.                         '</key>' . "\n";
  114.                     break;
  115.                 case VAR_DUMP_FINISH_ELEMENT :
  116.                 case VAR_DUMP_FINISH_STRING :
  117.                     $txt .=
  118.                         $this->_spacer($depth) . '<type>' .
  119.                         htmlspecialchars($this->type[$c]) .
  120.                         '</type>' . "\n".
  121.                         $this->_spacer($depth--) . '<value>' .
  122.                         htmlspecialchars($this->value[$c]) .
  123.                         '</value>' . "\n" .
  124.                         $this->_spacer($depth--) . '</element>' . "\n";
  125.                     break;
  126.             }
  127.         }
  128.         return $txt;
  129.     }
  130.  
  131.     /**
  132.      * Returns a spacer string to prefix the line
  133.      * @param integer $depth Depth level.
  134.      * @return string Spacer string
  135.      * @access private
  136.      */
  137.     function _spacer($depth) {
  138.         return str_repeat(' ', $depth << 1);
  139.     }
  140.  
  141. }
  142.  
  143. ?>